home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-06-15 | 348 b | 25 lines | [TEXT/CWIE] |
- // FileFlusher.h
-
- #ifndef FileFlusher_h
- #define FileFlusher_h
-
- #ifndef ParamBlockTask_h
- #include "ParamBlockTask.h"
- #endif
-
- class FileWritingPath;
-
- class FileFlusher: public ParamBlockTask
- {
- private:
- virtual void Launch();
- virtual void Kill();
-
- public:
- Task *operator()( const FileWritingPath& );
-
- OSErr Result() const;
- };
-
- #endif
-